This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: working as expected, no bug at all ... ~Lex Fezponeburnivu 9.Oct.03 07:47 AM a Web browser General 6.0.3; 6.0.2 CF2; 6.0.2 CF1; 6.0.2; 6.0.1 CF3; 6.0.1 CF2; 6.0.1 CF1; 6.0.1; 6.0All Platforms
hi,
sorry for the stupid, was not my day...
here is some listing on all different "options" i tried:
first:
a simple database containing one form and one view
the form has 2 fields:
field "a" and field "b", simple text, no formulas, merge replication conflicts is turned off
here is the code of agent:
Dim s As New Notessession
Dim db As Notesdatabase
Dim dc As Notesdocumentcollection
Dim doc As Notesdocument
Set db = s.CurrentDatabase
Set dc = db.AllDocuments
Set doc = dc.GetFirstdocument
Do While Not(doc Is Nothing)
Stop
Call doc.ComputeWithForm(True, False)
doc.Save True, True
Set doc = dc.GetNextdocument(doc)
Loop
i also tried it with the form "Merge Replication Conflict" turned on, also without result.
you can simply redo these error, if you are debugging the agent, working with 2 clients on the server (i did it with R5 and one R6, the Server is 6.02) and stopping after the agent has created the dc object, but not already done the "set doc" line. Then go to the other client, change anything in the document, then go back to first client that is debugging and let the agent set the doc variable. then look what doc contains, and you will see that it contains the old values.